home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 8 / Revista CD Expert nº 08 CD1.iso / Utilitarios / Programacao / Pacific C for DOS / EXAMPLES / FULLPATH.C < prev    next >
C/C++ Source or Header  |  1995-03-08  |  199b  |  13 lines

  1. #include    <stdio.h>
  2.  
  3. #if    !LARGE_MODEL
  4. #error    This program must be compiled with the LARGE memory model
  5. #endif
  6.  
  7. extern char *    _fullpath;
  8.  
  9. main()
  10. {
  11.     printf("Full path = %s\n", _fullpath);
  12. }
  13.